/* ===== ELEVEN FORCE - MAIN MODAL ===== */
.eleven-force-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffebc4 0%, #ffebc4ad 100%);
  background-size: 400% 400%;
  animation: elevenForceGradientShift 20s ease infinite;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.eleven-force-modal.active {
  display: flex;
}

@keyframes elevenForceGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.eleven-force-container {
  background: var(--primary-bg, #f5f4ed);
  border-radius: 40px;
  padding: 35px;
  max-width: 1400px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25),
    0 15px 40px rgba(255, 198, 47, 0.15),
    inset 0 2px 5px rgba(255, 255, 255, 0.9);
  animation: elevenForceSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 6px solid;
  border-image: linear-gradient(
      135deg,
      #ff6b35,
      #4ecdc4,
      #ffd93d,
      #95e1d3,
      #a8e6cf
    )
    1;
}

@keyframes elevenForceSlideUp {
  from {
    transform: translateY(100px) scale(0.85);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
.eleven-force-container::-webkit-scrollbar {
  width: 12px;
}

.eleven-force-container::-webkit-scrollbar-track {
  background: linear-gradient(
    135deg,
    rgba(255, 214, 165, 0.2),
    rgba(202, 255, 191, 0.2)
  );
  border-radius: 10px;
}

.eleven-force-container::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--secondary-bg, #ffc62f) 0%,
    #ffd93d 100%
  );
  border-radius: 10px;
  border: 2px solid white;
}

.eleven-force-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    #ffd93d 0%,
    var(--secondary-bg, #ffc62f) 100%
  );
}

/* ===== CLOSE BUTTON ===== */
.eleven-force-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-bg);
  color: #1e1e1e;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 3.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: bold;
  border: 4px solid white;
  height: auto;
  width: var(--fs-26-60);
  aspect-ratio: 1 / 1;
  line-height: 1;
  font-size: var(--fs-12-24);
  z-index: 9999;
}

.eleven-force-close-btn:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.eleven-force-close-btn:active {
  transform: scale(1.05) rotate(90deg);
}

.eleven-force-close-icon {
  display: block;
  line-height: 1;
}

/* ===== HEADER ===== */
.eleven-force-header {
  text-align: center;
  margin-bottom: 30px;
  animation: elevenForceBounceIn 0.8s ease-out;
}

@keyframes elevenForceBounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.eleven-force-title-wrapper {
  display: inline-block;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffebc4 0%, #ffebc4ad 100%);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.eleven-force-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

.eleven-force-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* ===== SCORE BAR ===== */
.eleven-force-score-bar {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.eleven-force-score-item {
  background: white;
  border-radius: 25px;
  padding: 20px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 3px solid #e8e8e8;
  transition: all 0.3s ease;
  min-width: 160px;
}

.eleven-force-score-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.eleven-force-score-item.eleven-force-total {
  background: #1e1e1e;
  /* border-color: #FF8C00; */
  border: none;
  /* animation: elevenForcePulseGlow 2s infinite; */
}

@keyframes elevenForcePulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }

  50% {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  }
}

.eleven-force-score-icon {
  width: 40px;
  height: 40px;
  stroke: #ffc62f;
}

.eleven-force-score-icon > svg {
  stroke: #ffc62f;
}

.eleven-force-total .eleven-force-score-icon {
  color: white;
}

.eleven-force-score-label {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #666;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eleven-force-total .eleven-force-score-label {
  color: white;
}

.eleven-force-score-value {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #1e1e1e;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(255, 198, 47, 0.2);
}

.eleven-force-total .eleven-force-score-value {
  color: var(--primary-bg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION TABS ===== */
.eleven-force-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.eleven-force-tab-btn {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  color: var(--font-color, #1e1e1e);
  border: 3px solid #d0d5dd;
  padding: 15px 25px;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.eleven-force-tab-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.eleven-force-tab-btn.active {
  background: linear-gradient(
    135deg,
    var(--secondary-bg, #ffc62f) 0%,
    #ffd93d 100%
  );
  color: var(--font-color, #1e1e1e);
  border-color: #ffd93d;
  box-shadow: 0 8px 25px rgba(255, 198, 47, 0.4);
  transform: translateY(-2px) scale(1.05);
}

/* ===== CONTENT SECTIONS ===== */
.eleven-force-content-section {
  display: none;
  animation: elevenForceFadeSlide 0.5s ease-out;
}

.eleven-force-content-section.active {
  display: block;
}

@keyframes elevenForceFadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eleven-force-learn-card {
  background: white;
  border-radius: 35px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 4px solid #e8ecf1;
  padding: var(--fs-12-24);
}

/* ===== SECTION HEADER ===== */
.eleven-force-section-header {
  text-align: center;
  margin-bottom: 35px;
}

.eleven-force-section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  background: linear-gradient(135deg, #ff6b35 0%, #4ecdc4 50%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 12px;
}

.eleven-force-section-subtitle {
  font-size: clamp(1.1rem, 2.3vw, 1.6rem);
  color: #ff6b35;
  font-weight: 700;
}

/* ===== WHAT IS FORCE SECTION ===== */
.eleven-force-intro-content {
  max-width: 1100px;
  margin: 0 auto;
}

.eleven-force-intro-text {
  background: linear-gradient(135deg, #fff9e6 0%, #ffefba 100%);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 35px;
  border: 3px solid #ffd700;
}

.eleven-force-intro-description {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--font-color, #1e1e1e);
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
}

.eleven-force-push-pull-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.eleven-force-concept-card {
  background: white;
  border-radius: 25px;
  padding: var(--fs-12-24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid;
  transition: all 0.3s ease;
}

.eleven-force-push-card {
  border-color: #ff6b6b;
}

.eleven-force-pull-card {
  border-color: #4ecdc4;
}

.eleven-force-concept-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.eleven-force-concept-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
}

.eleven-force-push-card .eleven-force-concept-title {
  color: #ff6b6b;
}

.eleven-force-pull-card .eleven-force-concept-title {
  color: #4ecdc4;
}

.eleven-force-concept-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 20px;
}

.eleven-force-concept-img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
}

.eleven-force-concept-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #666;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

/* ===== REAL LIFE EXAMPLES SECTION ===== */
.eleven-force-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.eleven-force-example-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 4px solid;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eleven-force-example-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.eleven-force-example-header {
  padding: 25px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eleven-force-example-header h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 900;
  margin: 0;
}

.eleven-force-example-type {
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
}

.eleven-force-example-body {
  padding: var(--fs-12-24);
}

.eleven-force-example-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eleven-force-example-img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
}

.eleven-force-example-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #666;
  line-height: 1.6;
  font-weight: 600;
}

/* ===== TYPES OF FORCES SECTION ===== */
.eleven-force-types-section {
  margin-bottom: 50px;
}

.eleven-force-types-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ff6b35;
  margin-bottom: 10px;
  font-weight: 900;
  text-align: center;
}

.eleven-force-types-intro {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.eleven-force-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.eleven-force-type-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 4px solid;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eleven-force-type-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.eleven-force-type-header {
  padding: 25px;
  text-align: center;
  color: white;
}

.eleven-force-type-header h4 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 900;
  margin: 0;
}

.eleven-force-type-body {
  padding: var(--fs-12-24);
}

.eleven-force-type-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eleven-force-type-img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
}

.eleven-force-type-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}

.eleven-force-type-examples {
  background: rgba(255, 107, 53, 0.1);
  padding: 20px;
  border-radius: 15px;
}

.eleven-force-type-examples h5 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: #ff6b35;
  margin-bottom: 12px;
  font-weight: 900;
}

.eleven-force-type-examples ul {
  margin: 0;
  padding-left: 25px;
}

.eleven-force-type-examples li {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #555;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== EFFECTS OF FORCE SECTION ===== */
.eleven-force-effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.eleven-force-effect-card {
  background: white;
  border-radius: 25px;
  padding: var(--fs-12-24);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid;
  transition: all 0.3s ease;
  text-align: center;
}

.eleven-force-effect-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.eleven-force-effect-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.eleven-force-effect-img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.eleven-force-effect-name {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--font-color, #1e1e1e);
}

.eleven-force-effect-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #666;
  line-height: 1.6;
  font-weight: 600;
}

/* ===== INTERACTIVE PUSH TOOL ===== */
.eleven-force-push-tool-container {
  display: grid;
  grid-template-columns: 300px 1fr 250px;
  gap: 20px;
  margin-bottom: 30px;
}

.eleven-force-push-controls,
.eleven-force-push-stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 25px;
  border: 3px solid #dee2e6;
}

.eleven-force-object-selector h4 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #ff6b35;
  margin-bottom: 15px;
  font-weight: 900;
}

.eleven-force-object-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.eleven-force-object-btn {
  padding: 15px;
  background: white;
  border: 3px solid #dee2e6;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eleven-force-object-btn:hover {
  transform: scale(1.05);
  border-color: var(--secondary-bg, #ffc62f);
}

.eleven-force-object-btn.active {
  background: var(--secondary-bg, #ffc62f);
  border-color: var(--secondary-bg, #ffc62f);
  box-shadow: 0 5px 15px rgba(255, 198, 47, 0.4);
}

.eleven-force-object-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.eleven-force-slider-controls {
  margin-bottom: 20px;
}

.eleven-force-slider-group {
  margin-bottom: 20px;
}

.eleven-force-slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  font-weight: 700;
  color: #495057;
}

.eleven-force-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  -webkit-appearance: none;
}

.eleven-force-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-bg, #ffc62f);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 198, 47, 0.6);
}

.eleven-force-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-bg, #ffc62f);
  cursor: pointer;
  border: none;
}

.eleven-force-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eleven-force-action-btn {
  padding: 15px;
  border: none;
  border-radius: 15px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.eleven-force-push-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e74c3c 100%);
}

.eleven-force-push-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.eleven-force-clear-btn {
  background: linear-gradient(135deg, #95e1d3 0%, #4ecdc4 100%);
}

.eleven-force-clear-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.eleven-force-canvas-wrapper {
  background: linear-gradient(to bottom, #87ceeb 0%, #4682b4 100%);
  border-radius: 20px;
  padding: 10px;
  border: 4px solid #dee2e6;
}

#elevenPushCanvas {
  width: 100%;
  height: 500px;
  background: linear-gradient(to bottom, #87ceeb, #b0e0e6);
  border-radius: 15px;
  cursor: crosshair;
  display: block;
}

.eleven-force-push-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-wrap: wrap;
}

.eleven-force-stat-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: white;
  border-radius: 10px;
  font-weight: 700;
  color: #495057;
  font-size: clamp(1rem, 2vw, 1.2rem);
  gap: 1em;
}

.eleven-force-stat-item span:last-child {
  color: #ffc62f;
  font-weight: 900;
}

/* ===== PULL GAME SECTION ===== */
.eleven-force-game-info {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  border: 3px solid #4caf50;
}

.eleven-force-game-level-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.eleven-force-level-badge {
  background: white;
  padding: 15px 25px;
  border-radius: 20px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: #1b5e20;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #4caf50;
}

.eleven-force-game-instructions {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #2e7d32;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}

.eleven-force-game-container {
  min-height: 400px;
}

.eleven-force-game-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.eleven-force-game-start-btn {
  background: linear-gradient(135deg, #4ecdc4 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  border-radius: 35px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  border: 3px solid white;
  min-width: 280px;
}

.eleven-force-game-start-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.eleven-force-game-progress {
  background: white;
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.eleven-force-progress-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 2px solid #f0f0f0;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #555;
}

.eleven-force-progress-item:last-child {
  border-bottom: none;
}

.eleven-force-progress-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: 15px;
  border-top: 3px solid #4ecdc4;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 900;
  color: #ff6b35;
}

/* ===== GAME PLAY AREA ===== */
.eleven-force-game-play {
  background: white;
  border-radius: 25px;
  padding: 0;
}

.eleven-force-game-play-header {
  text-align: center;
  margin-bottom: 25px;
}

.eleven-force-game-play-header h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ff6b35;
  font-weight: 900;
  margin-bottom: 15px;
}

.eleven-force-game-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.eleven-force-game-stats .eleven-force-stat-item {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 15px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 3px solid #4ecdc4;
  min-width: 120px;
}

.eleven-force-game-stats .eleven-force-stat-item span:first-child {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #0d47a1;
  font-weight: 700;
}

.eleven-force-stat-value {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  color: #ff6b35;
  font-weight: 900;
}

.eleven-force-game-canvas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 20px;
  padding: 0;
  border: none;
}

#elevenPullGameCanvas {
  width: 100%;
  max-width: 800px;
  height: auto;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
  cursor: pointer;
  border: 4px solid white;
}

.eleven-force-game-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.eleven-force-finish-level-btn {
  background: linear-gradient(135deg, #95e1d3 0%, #4ecdc4 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  border-radius: 35px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  border: 3px solid white;
}

.eleven-force-finish-level-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.eleven-force-back-menu-btn {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 20px auto 0;
}

.eleven-force-back-menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== NEXT BUTTON ===== */
.eleven-force-next-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e74c3c 100%);
  color: white;
  border: none;
  padding: 0.75em 1.25em;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  border-radius: 35px;
  cursor: pointer;
  font-weight: 900;
  margin-top: 35px;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  border: 3px solid white;
}

.eleven-force-next-btn:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.eleven-force-next-btn:active {
  transform: translateY(-5px) scale(1.01);
}

.eleven-force-btn-arrow {
  width: 30px;
  height: 30px;
}

/* ===== CONFETTI ===== */
.eleven-force-confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30000;
  overflow: hidden;
  display: none;
}

.eleven-force-confetti-container.active {
  display: block;
}

.eleven-force-confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  animation: elevenForceConfettiFall 3s linear forwards;
}

@keyframes elevenForceConfettiFall {
  0% {
    top: -10%;
    transform: translateX(0) rotateZ(0deg);
    opacity: 1;
  }

  100% {
    top: 110%;
    transform: translateX(100px) rotateZ(720deg);
    opacity: 0;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .eleven-force-push-tool-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .eleven-force-push-controls {
    order: 2;
  }

  .eleven-force-canvas-wrapper {
    order: 1;
  }

  .eleven-force-push-stats {
    order: 3;
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 992px) {
  .eleven-force-container {
    padding: 30px;
  }

  .eleven-force-examples-grid,
  .eleven-force-types-grid,
  .eleven-force-effects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .eleven-force-container {
    padding: 25px;
    border-radius: 30px;
  }

  .eleven-force-nav-tabs {
    gap: 10px;
  }

  .eleven-force-tab-btn {
    padding: 12px 20px;
  }

  .eleven-force-examples-grid,
  .eleven-force-types-grid,
  .eleven-force-effects-grid {
    grid-template-columns: 1fr;
  }

  .eleven-force-push-pull-container {
    grid-template-columns: 1fr;
  }

  #elevenPushCanvas,
  #elevenPullGameCanvas {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .eleven-force-modal {
    padding: 10px;
  }

  .eleven-force-container {
    padding: 20px;
    border-radius: 25px;
    border-width: 4px;
  }

  .eleven-force-close-btn {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
    top: 15px;
    right: 15px;
  }

  .eleven-force-score-bar {
    gap: 15px;
  }

  .eleven-force-score-item {
    padding: 15px 25px;
    min-width: 140px;
  }

  .eleven-force-nav-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .eleven-force-tab-btn {
    width: 100%;
  }

  .eleven-force-object-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
